home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 25 / CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso / CUCD / Magazine / C_Tutorial / Part-13 / PatchLib / source / stubs / RemovePatch.asm < prev    next >
Encoding:
Assembly Source File  |  1993-10-09  |  311 b   |  25 lines

  1. * RemovePatch.asm
  2.  
  3.     incdir "work:Includes/IncludeV2.0.i/"
  4.     include "exec/types.i"
  5.     include "exec/libraries.i"
  6.  
  7.     SECTION code
  8.  
  9.     XREF    _PatchBase
  10.  
  11.  
  12.     XREF    _LVORemovePatch
  13.     XDEF    _RemovePatch
  14.  
  15. _RemovePatch:
  16.     move.l a6,-(sp)
  17.     move.l 8(sp),a0
  18.     move.l _PatchBase,a6
  19.     jsr _LVORemovePatch(a6)
  20.     move.l (sp)+,a6
  21.     rts
  22.  
  23.  
  24.     END
  25.